  /*=============== GOOGLE FONTS ===============*/
  @import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");
  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');


/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --black-color: hsl(220, 24%, 12%);
  --black-color-light: hsl(220, 24%, 15%);
  --black-color-lighten: hsl(220, 20%, 18%);
  --white-color: #fff;
  --body-color: hsl(220, 100%, 97%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", sans-serif;
  --normal-font-size: .938rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--white-color);
}

ul {
  list-style: none;
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

/*=============== HEADER ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #207152;
  ;
  box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
  z-index: var(--z-fixed);
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
}

.nav__logo,
.nav__burger,
.nav__close {
  color: var(--white-color);
}

.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__link i {
  color: #18f98f;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: .25rem;
  font-weight: var(--font-semi-bold);
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

.nav__logo i {
  font-weight: initial;
  font-size: 1.25rem;
}

.nav__logo img {
  width: 47vh;
  height: 40vh;
  margin-left: -20vh;
  margin-top: -8px;

}


.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}

.nav__burger,
.nav__close {
  position: absolute;
  width: max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 1.25rem;
  cursor: pointer;
  transition: opacity .1s, transform .4s;
}

.nav__close {
  opacity: 0;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1118px) {
  .nav__menu {
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: top .4s, opacity .3s;
  }

  /* .nav__logo img {

    width: 38vh;
    height: 36vh;
    margin-left: -10vh;
    margin-top: -8px;
  } */

  .nav__menu::-webkit-scrollbar {
    width: 0;
  }

  .nav__list {
    background-color: #207152;
    ;
    padding-top: 1rem;
  }
}


.nav__link {
  color: var(--white-color);
  background-color: #207152;
  ;
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 2.5rem;
  display: flex;

  align-items: center;
  transition: background-color .3s;
}

.nav__link:hover {
  /* background-color: #5e5555; */
  color: #ed9d93;
}

/* Show menu */
.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}

/* Show icon */
.show-icon .nav__burger {
  opacity: 0;
  transform: rotate(90deg);
}

.show-icon .nav__close {
  opacity: 1;
  transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__item {
  cursor: pointer;
}

.dropdown__arrow {
  font-size: 1.25rem;
  font-weight: initial;
  transition: transform .4s;
}

.dropdown__link,
.dropdown__sublink {
  padding: 1.25rem 1.25rem 1.25rem 2.5rem;
  color: var(--white-color);
  background-color: #207152;
  ;
  display: flex;
  align-items: center;
  column-gap: .5rem;
  font-weight: var(--font-semi-bold);
  transition: background-color .3s;
}

.dropdown__link i,
.dropdown__sublink i {
  font-size: 1.25rem;
  font-weight: initial;
}

.dropdown__link:hover,
.dropdown__sublink:hover {
  /* background-color: #5e5555; */
  color: #ed9d93;
}

.dropdown__menu,
.dropdown__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease-out;
}

/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu,
.dropdown__subitem:hover>.dropdown__submenu {
  max-height: 1000px;
  transition: max-height .4s ease-in;
}

/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
  transform: rotate(180deg);
}

/*=============== DROPDOWN SUBMENU ===============*/
.dropdown__add {
  margin-left: auto;
}

.dropdown__sublink {
  background-color: var(--black-color-lighten);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }

  .nav__link {
    padding-inline: 1rem;
  }

}

/* For large devices */
@media screen and (min-width: 1118px) {
  .container {
    margin-inline: auto;
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
    display: flex;
    justify-content: space-between;
  }

  .nav__toggle {
    display: none;
  }

  .nav__list {
    height: 100%;
    display: flex;
    column-gap: 2rem;
    margin-right: -30px;
  }

  .nav__link {
    height: 100%;
    padding: 0;
    justify-content: initial;
    column-gap: .25rem;
  }



  .nav__list:hover {
    background-color: transparent;

  }

  .dropdown__item,
  .dropdown__subitem {
    position: relative;
  }

  .dropdown__menu,
  .dropdown__submenu {
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: 0;
    top: 6rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, top .3s;
  }



  .dropdown__link,
  .dropdown__sublink {
    padding-inline: 1rem 3.5rem;
  }

  .dropdown__subitem .dropdown__link {
    padding-inline: 1rem;
  }

  .dropdown__submenu {
    position: absolute;
    left: 100%;
    top: .5rem;
  }

  /* Show dropdown menu */
  .dropdown__item:hover .dropdown__menu {
    opacity: 1;
    top: 5.5rem;
    pointer-events: initial;
    transition: top .3s;
  }

  /* Show dropdown submenu */
  .dropdown__subitem:hover>.dropdown__submenu {
    opacity: 1;
    top: 0;
    pointer-events: initial;
    transition: top .3s;
  }
}

@media screen and (max-width: 1118px) {
  .nav__logo img {

    width: 38vh;
    height: 36vh;
    margin-left: -10vh;
    margin-top: -8px;
  }
}

@media screen and (max-width: 1280px) {
  .nav__logo img {
    width: 38vh;
    height: 36vh;
    margin-left: -10vh;
    margin-top: -8px;
  }
}

@media (max-width:1024px) {
  .nav__logo img {
    width: 18vh;
    height: 16vh;
    margin-left: 2vh;
    margin-top: -8px;
  }
}

/* @media screen and (max-width: 430px) {
  .nav__logo img {
    width: 20vh;
    height: 20vh;
  
  }
} */

/* navbarend */



  
  
    /* ----- BANNER SECTION ----- */
    :root {
      --primary: #e54b4b;
      --font: #676767;
      --heading: #333;
  }

    
       /* --------- Home Container Css --------- */
       .home-container {
        width: 100%;
        padding: 0 13%;
        height: 80vh;
        display: flex;
        align-items: center;
        position: relative;
      
        margin-top: 10vh
    }
    .home-container .img-area {
        position: absolute;
        width: 52%;
        height: 89%;
        margin-top: 5vh;
        right: 0;
        top: 0;
        overflow: hidden;
        border-left-style: 50px;
        z-index: -99;
    }
    .home-container .img-area img {
      width: 79%;
    height: 96%;
    height: 75vh;
   
        object-fit: cover;
        clip-path:ellipse(85% 122% at 65% 50%);
    }
    .text-area {
        position: relative;
    }
    .text-area .heading {
        font-size: 34px;
        color: #6b6969;
        margin-bottom: 8px;
        margin-left: -35px
    }
    .text-area .heading span {
          color: #fff;
        /* color:hsl(220deg 2.61% 36.37%); */
        -webkit-text-stroke-width: 1.2px;
        -webkit-text-stroke-color: var(--primary);
    }
    .text-area .job {
        font-size: 18px;
        padding-left: 60px;
        color: var(--font);
        position: relative;
    }
    .text-area .job::after {
        position: absolute;
        left: 5px;
        top: 50%;
        transform: translateY(-505);
        content: '';
        width: 45px;
        height: 2.5px;
        background-color: var(--font);
        border-radius: 10px;
        animation: width-size 2s infinite linear;
    }

    @keyframes width-size {
        0% {
            width: 0px;
        }
        50% {
            width: 40px;
        }
        100% {
            width: 0px;
        }
    }
    .scrollDown-icon {
      position: absolute;
    left: 111px;
    bottom: -55px;
    width: 25px;
    height: 40px;
    background-color: transparent;
    border: 2px solid var(--primary);
    border-radius: 30px;
    position: relative;
    }
    .scrollDown-icon::after {
        position: absolute;
        content: '';
        top: 5px;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 5px;
        background-color: #e54b4b;
        animation: scroll-animation 1.5s infinite;
    }
    @keyframes scroll-animation {
        0% {
            top: 5px;
        }
        100% {
            top: 35px;
            opacity: 0;
        }
    }

  /* --------- Media Query Css --------- */
  @media (max-width: 820px) {


    /* Home Container Css  */
    .home-container .img-area img {
        opacity: .5;

        width: 99%;
 
    height: 53vh
    }
    .home-container .text-area .heading {
        font-size:29px;
        margin-top: -261px;
    }
    .home-container .img-area {
     
      width: 89%;
    
      height: 73vh;
      right: 0;
      top: 0;
   
  }
}
@media (max-width: 1000px) {

  .home-container .img-area {
     
    width: 68%;
    height: 78vh;
    right: 0;
    top: 0;
 
}
.home-container .text-area .heading {
  font-size:29px;
  margin-top: --322px;
}
}

@media (max-width: 600px) {
  .home-container .img-area {
    width: 100%;
      
        height: 60vh;
       
    }
    .home-container .img-area img {
    width: 99%;
        height: 96%;
        height:60vh;
        opacity: .5;
    }
    .home-container .text-area .heading {
      font-size:29px;
      margin-top: -250px;
    }
}
@media (max-width: 1024px) {
  .home-container .img-area {
    width: 98%;
      
        height: 60vh;
       
    }
    .home-container .img-area img {
      width: 78%;
        /* height: 96%; */
        height:60vh;
        opacity: .5;
    }
    .home-container .text-area .heading {
      font-size:29px;
      margin-top: -450px;
    }
}
@media (max-width: 540px) {
  .home-container .img-area {
    width: 100%;
      
        height: 60vh;
       
    }
    .home-container .img-area img {
    width: 99%;
        height: 96%;
        height:60vh;
        opacity: .5;
    }
    .home-container .text-area .heading {
      font-size:29px;
      margin-top: -200px;
    }
}
@media (max-width: 400px) {
  .home-container .img-area {
    width: 100%;
      
        height: 60vh;
       
    }
    .home-container .img-area img {
    width: 90%;
        height: 96%;
        height:60vh;
        opacity: .5;
    }
    .home-container .text-area .heading {
      font-size:29px;
      margin-top: -200px;
    }
}
/* heading start */

.main{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-family: pop;
	padding: 50px;
}
.main .Tutors{
	font-size: 25px;
	margin-bottom: 80px;
	position: relative;
}
.Tutors span{
	color: rgb(0, 81, 255);
}
.Tutors::after{
	content: " ";
	position: absolute;
	width: 60%;
	height: 3px;
	left: 50%;
	transform: translateX(-50%);
	bottom: -5px;
	background-color: rgb(0, 81, 255);
}
/* heading end */



/* main section start */
.tutours{
  min-height: 70vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f7f8fc;
  text-align: center;
  margin-top: -87px;
}
.containertutour {
  max-width: 1000px;
  width: 0 auto;
}
/* 
.containertutour .content {
  margin: 50px 0px;
  color: #333;
} */

.card-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.card-container .card {
  height: 295px;
  width: 37vh;
  background: rgb(255, 255, 255);
  margin: 0px;
  padding: 24px;
  box-shadow: rgb(204, 204, 204) 5px 5px 5px 5px;

}

.card img {
  max-width: 125px;
  object-fit: cover;
}

.card h4 {
  font-weight: 600;
  margin: 10px 0px;
}

.card p {
  font-size: 12px;
}

.container .btn {
  margin: 20px;
}

.container .btn button {
  height: 40px;
  width: 150px;
  background: #10182f;
  color: #fff;
  border: 0;
  outline: none;
  border-radius: 5px;
  cursor: pointer;
}

@media (max-width: 1000px) {
  .card-container {
      flex-wrap: wrap;
      justify-content: center;
  }
  .tutours{
    min-height: 120vh;
  }
}
@media (max-width: 500px) {
  .tutours{
    min-height: 180vh;
  }
}
/* main section end */




/* student tutours */

/* heading start */

.work{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-family: pop;
	padding: 47px;
}
.work .Tutors{
	font-size: 28px;
    margin-bottom: 10px;
    position: relative;
}
.work .Tutors span{
	color: rgb(247, 41, 52);
}
.work .Tutors::after{
	content: " ";
	position: absolute;
	width: 60%;
	height: 3px;
	left: 50%;
	transform: translateX(-50%);
	bottom: -5px;
	background-color: rgb(247, 41, 52);
}




.student{
  align-items: center;
    background-color: #F3F5F7;
    font-family: 'Poppins',
        sans-serif;
    width: 100%;
    min-height: 100vh;
    color: #1B1C34;
    display: flex;
    justify-content: center;
    align-items: center;
}

.containerstudent {
  max-width: 70%;
  margin: 0 auto;
  height: 100%;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3%;
  margin: 5% 0;
}

.cardstudent {
  overflow: hidden;
  padding: 20px;
  background-color: #FFF;
  border-radius: 30px;
  text-align: center;
}


.card_img img {
  width: 100%;
  height: 20vh;
  border-radius: 20px;
}

.card_body {
  padding: 26px 20px 36px 20px;
}

.card_title {
  font-family: 'Merriweather',
      serif;
  font-weight: 900;
  text-transform: capitalize;

  font-size: 26px;
  padding-bottom: 20px;
}

.card_body p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;

}


@media only screen and (max-width: 1441px) and (min-width: 1025px) {
  .container {
      max-width: 80%;
  }

  .grid {
      gap: 2%;
  }

  .card {
      padding: 15px;
  }

  .card_body {
      padding: 15px;
  }

  .card_title {
      font-size: 22px;
      padding-bottom: 14px;
  }

  .card_body p {
      font-size: 16px;
  }

  a.read_more {
      padding: 19px 0;
      width: 60%;
      font-size: 11px;
      margin-top: 30px;
  }

}

@media only screen and (max-width: 1024px) {

  .grid {
      grid-template-columns: 1fr;
      gap: 2%;
  }
}

@media only screen and (max-width: 425px) {
  .container {
      max-width: 90%;
  }

  .card {
      padding: 20px 10px;
  }

  .card_body {
      padding: 7px;
  }

  .card_title {
      font-size: 20px;
      padding-bottom: 7px;
  }

  .card_body p {
      font-size: 14px;
  }

  a.read_more {
      padding: 15px 0;
      margin-top: 20px;
  }

}
/* student tutours end */






/* pricing heading */
.works{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-family: pop;
	padding: 47px;
  margin-top: 5vh;
}
.works .Tutors{
	font-size: 28px;
    margin-bottom: 10px;
    position: relative;
}
.works .Tutors span{
	color: rgb(247, 41, 52);
}
.works .Tutors::after{
	content: " ";
	position: absolute;
	width: 60%;
	height: 3px;
	left: 50%;
	transform: translateX(-50%);
	bottom: -5px;
	background-color: rgb(248, 6, 18);
}
/* pricing heading end */



/* registration form */

.seat{
  display: flex;
    justify-content: center;
    align-items: center;
    min-height: 110vh;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}
.Register{
  max-width: 750px;
  width: 100%;
  background: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1),
              0px 5px 12px -2px rgba(0, 0, 0, 0.1),
              0px 18px 36px -6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 10px;
}

.Register .title{
  padding: 25px;
  background: #f6f8fa;
}

.Register .title p{
  font-size: 25px;
  font-weight: 500;
  position: relative;
}

.Register .title p::before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 99px;
  height: 3px;
  background: linear-gradient(to right, #F37A65, #D64141);
  animation: width-sizes 2s infinite linear;
}

@keyframes width-sizes {
  0% {
      width: 0px;
  }
  50% {
      width: 96px;
  }
  100% {
      width: 0px;
  }
}

.user_details{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 25px;
}

.user_details .input_box{
  width: calc(100% / 2 - 20px);
  margin: 0 0 12px 0;
}

.input_box label{
  font-weight: 500;
  margin-bottom: 5px;
  display: block;
}

.input_box label::after{
  content: " *";
  color: red;
}

.input_box input{
  width: 100%;
  height: 45px;
  border: none;
  outline: none;
  border-radius: 5px;
  font-size: 16px;
  padding-left: 15px;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
  background-color: #f6f8fa;
  font-family: 'Poppins', sans-serif;
  transition: all 120ms ease-out 0s;
}


.input_box input:focus,
.input_box input:valid{
  box-shadow: 0px 0px 0px 2px #AC8ECE;
}

form .gender{
  padding: 0px 25px;
}

.gender .gender_title{
  font-size: 20px;
  font-weight: 500;
}

.gender .category{
  width: 28%;
  display: flex;
  justify-content: space-between;
  margin: 5px 0;
}

.gender .category label{
  display: flex;
  align-items: center;
  cursor: pointer;
}

.gender .category label .dot{
  height: 18px;
  width: 18px;
  background: #d9d9d9;
  border-radius: 50%;
  margin-right: 10px;
  border: 4px solid transparent;
  transition: all 0.3s ease;
}

#radio_1:checked ~ .category label .one,
#radio_2:checked ~ .category label .two,
#radio_3:checked ~ .category label .three{
  border-color: #d9d9d9;
  background: #D64141;
}

.gender input{
  display: none;
}

.reg_btn{
  padding: 25px;
  margin: 15px 0;
}

.reg_btn input{
  height: 45px;
  width: 100%;
  border: none;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  background: linear-gradient(to right, #F37A65, #D64141);
  border-radius: 5px;
  color: #ffffff;
  letter-spacing: 1px;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}

.reg_btn input:hover{
  background: linear-gradient(to right, #D64141, #F37A65);
}

@media screen and (max-width: 584px){

  .user_details{
      max-height: 340px;
      overflow-y: scroll;
  }

  .user_details::-webkit-scrollbar{
      width: 0;
  }

  .user_details .input_box{
      width: 100%;
  }

  .gender .category{
      width: 40%;
  }

}


@media screen and (max-width: 419px){
  .gender .category{
      flex-direction: column;
  }   
}


/* select */
/* #city{
  width: 100%;
  height: 45px;
  border: none;
  outline: none;
  border-radius: 5px;
  font-size: 16px;
  padding-left: 15px;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
  background-color: #f6f8fa;
  font-family: 'Poppins', sans-serif;
  transition: all 120ms ease-out 0s;
} */


.select-container {
  position: relative;
  display: inline-block;
overflow: hidden;
  width: 100%;
  height: 45px;
  border: none;
  outline: none;
  border-radius: 5px;
  font-size: 16px;
  padding-left: 15px;
  box-shadow: 0px 0px 0px 1px #f6f8fa;

  font-family: 'Poppins', sans-serif;
  transition: all 120ms ease-out 0s;
}

select {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #f6f8fa;
  border-radius: 5px;
  background-color: #f6f8fa;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;


  width: 100%;
  height: 45px;
  border: none;
  outline: none;
  border-radius: 5px;

}

select:focus {
  outline: none;
}

.select-arrow {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  pointer-events: none;
}


#list{
  position: relative;
  display: inline-block;
}

@media only screen and (max-width: 600px) {
  select {
    width: 80%;
  }
}

/* multi select css */







/* pricing table */



/* pricing heading */
.works{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-family: pop;
	padding: 47px;
  margin-top: 5vh;
}
.works .Tutors{
	font-size: 28px;
    margin-bottom: 10px;
    position: relative;
}
.works .Tutors span{
	color: rgb(247, 41, 52);
}
.works .Tutors::after{
	content: " ";
	position: absolute;
	width: 60%;
	height: 3px;
	left: 50%;
	transform: translateX(-50%);
	bottom: -5px;
	background-color: rgb(248, 6, 18);
}
/* pricing heading end */



.pricing{
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 24px;
}
.price {
  width: 1170px;
  margin: 50px auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row;
}
.single-price {
  text-align: center;
  width: 31%;
  border: 1px solid #ddd;
  border-radius: 3px;
  transition: .3s;
}
.price-header {
  position: relative;
  padding: 25px 0px 50px;
  color: #fff;
}
.price-header:before {
  content: "";
  position: absolute;
  background-image: url('https://www.anahian.com/wp-content/uploads/2022/07/header-bg.png');
  width: 100%;
  height: 100%;
  z-index: -1;
  left: 0;
  top: 0;
  background-color: teal;
  background-position: bottom;
  background-size: cover;
}
.price-header span {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 20px;
}
.price-header h4 {
  font-size: 30px;
  margin-top: 20px;
}
.price-header h4 span {
  text-transform: lowercase;
}
.price-feature {
  margin: 30px 50px 30px;
  text-align: left;
}
.price-feature ul {
  list-style: none;
}
.price-feature ul li {
  margin-bottom: 5px;
  padding-bottom: 5px;
  border-bottom: 1px dashed #ddd;
}
.price-feature ul li.price-icon-check i {
  color: teal;
}
.price-feature ul li.price-icon-close i {
  color: red;
}
.price-feature ul li i {
  width: 20px;
}
.price-feature ul li:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.price-footer {
  position: relative;
  padding: 30px 0;
}
.price-footer:before {
  position: absolute;
  content: "";
  background-image: url('https://www.anahian.com/wp-content/uploads/2022/07/footer-bg.png');
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background-color: teal;
  z-index: -1;
  background-size: cover;
}
.price-footer a {
  color: #333;
  text-decoration: none;
  background-color: #fff;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 7px;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 20px;
}
.price-footer a:hover {
  color: teal;
}
.single-price:hover {
  border-color: teal;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .price{
      width: 970px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .price{
      width: 750px;
  }
  .price-feature {
      margin: 30px 15px 30px;
      text-align: left;
  }
}

@media only screen and (max-width: 767px) {
  .price{
      width: 350px;
      flex-direction: column;
  }
  .single-price{
      width: 100%;
      margin-bottom: 30px;
  }
}
/* pricing end */



/* testimonals  */
  

/* testimonal  heading */
.testimonals{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-family: pop;
	padding: 47px;
  margin-top: 10vh;
}
.testimonals .Tutors{
	font-size: 28px;
    margin-bottom: 10px;
    position: relative;
    text-transform: uppercase;
  
}
.testimonals .Tutors span{
	color: rgb(247, 41, 52);
  text-transform: uppercase;
}
.testimonals .Tutors::after{
	content: " ";
	position: absolute;
	width: 60%;
	height: 3px;
	left: 50%;
	transform: translateX(-50%);
	bottom: -5px;
	background-color: rgb(248, 6, 18);
 
}
/* testimonal heading end */

.containertesti{
  position: relative;
  width: 100%;
  min-height:583px;
  background-color: #f5f5f5;
}
.containertesti .contents-wraper{
  width: 70%;
  min-height: inherit;
  margin: 30px auto;
  text-align: center;
}
/* .contents-wraper .headertst h1{
  position: relative;
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  letter-spacing: 1px;
}
.contents-wraper .headertst h1::before{
  content: '';
  width: 200px;
  height: 2px;
  background-color: #006994;
  border-radius: 15px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
} */
.contents-wraper .testRow{
  width: 100%;
  min-height: inherit;
  position: relative;
  overflow: hidden;
}
.testRow .testItem{
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.testRow .testItem:not(.active){
  top: 0;
  left: -100%;
}
.testRow .testItem img{
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 5px;
  outline: 2px solid #006994;
  outline-offset: 2px;
}
.testRow .testItem h3{
  font-size: 30px;
  /* font-style: italic; */
  padding: 7px;
  color: #939393;
  font-family: 'PT Serif', serif;
}
.testRow .testItem h4{
  /* font-style: italic; */

  font-family: 'PT Serif', serif;
}
.testRow .testItem p{
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1.2;
  padding: 10px;
  color: #000000;
  font-family: 'PT Serif', serif;
}
.contents-wraper .indicators{
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px;
  cursor: pointer;
}
.contents-wraper .indicators .dot{
  width: 15px;
  height: 15px;
  margin: 0px 3px;
  border: 3px solid #aaa;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.5s ease;
}
.contents-wraper .indicators .active{
  background-color: #006994;
}
@keyframes next1{
  from{
    left: 0%;
  }
  to{
    left: -100%;
  }
}
@keyframes next2{
  from{
    left: 100%;
  }
  to{
    left: 0%;
  }
}

@keyframes prev1{
  from{
    left: 0%;
  }
  to{
    left: 100%;
  }
}
@keyframes prev2{
  from{
    left: -100%;
  }
  to{
    left: 0%;
  }
}

@media(max-width: 550px){
  .container .contents-wraper{
    width: 90%;
  }
  .contents-wraper .header h1{
    font-size: 32px;
  }
  .testRow .testItem h3{
    font-size: 26px;
  }
  .testRow .testItem p{
    font-size: 16px;
    letter-spacing: initial;
    line-height: initial;
  }

  .containertesti{
    min-height:900px;
  }
}
/* testimonal end */





/* FOOTER */
.footer {
  width: 100%;
  background: #184e28;
  display: block;
}

.inner-footer {
  width: 95%;
  margin: auto;
  padding: 30px 10px;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  justify-content: center;
}

.footer-items {
  width: 25%;
  padding: 10px 20px;
  box-sizing: border-box;
  color: #fff;
}

.footer-items p {
  font-size: 16px;
  text-align: justify;
  line-height: 25px;
  color: #fff;
}

.footer-items h1 {
  color: #fff;
  font-family: 'PT Serif', serif;
}

.footer-items h3 {
  font-size: 20px;
  font-weight: 600;
  color: rgb(245, 244, 248);
  margin: 1em 0px;
}

.footer-items img {
  width: 18vh;
  height: 18vh;
}

.border1 {
  height: 3px;
  width: 40px;
  background: #ff9800;
  color: #ff9800;
  background-color: #ff9800;
  border: 0px;
}

.footer-items ul {
  list-style: none;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.footer-items ul a {
  text-decoration: none;
  outline: none;
  color: #fff;
  transition: 0.3s;
}

.footer-items ul a:hover {
  color: #ff9800;
}

.footer-items ul li {
  margin: 10px 0;
  height: 25px;
}

ul li .asp {
  height: 30px;
}

.footer-items li i {
  margin-right: 20px;
}

.social-media {
  width: 100%;
  color: #fff;
  text-align: center;
  font-size: 20px;
}

.social-media a {
  text-decoration: none;
}

.social-media i {
  height: 25px;
  width: 25px;
  margin: 20px 10px;
  padding: 4px;
  color: #fff;
  transition: 0.5s;
}

.social-media i:hover {
  transform: scale(1.5);
}

.footer-bottom {
  padding: 10px;
  background: #00121b;
  color: #fff;
  font-size: 12px;
  text-align: center;
}

/* for tablet mode view */

@media screen and (max-width: 1275px) {
  .footer-items {
    width: 50%;
  }

  .footer-items img {
    width: 15vh;
    height: 15vh;
    margin-right: 20px;
  }
}

/* for mobile screen view */

@media screen and (max-width: 660px) {
  .footer-items {
    width: 100%;
  }
}

@media(min-width: 300px) and (max-width: 414px) {
  .footer-items img {
    width: 10vh;
    height: 10vh;
    margin-right: 20px;
  }

  .fb {
    height: 75px;
  }
}
/* footer end  */




